github.com/refraction-networking/utls.clientHelloMsg.sessionId (field)

20 uses

	github.com/refraction-networking/utls (current package)
		ech.go#L323: 			recon.AddBytes(outer.sessionId)
		handshake_client.go#L132: 		hello.sessionId = make([]byte, 32)
		handshake_client.go#L133: 		if _, err := io.ReadFull(config.rand(), hello.sessionId); err != nil {
		handshake_client.go#L900: 	return hs.session != nil && hs.hello.sessionId != nil &&
		handshake_client.go#L901: 		bytes.Equal(hs.serverHello.sessionId, hs.hello.sessionId)
		handshake_client_tls13.go#L211: 	if !bytes.Equal(hs.hello.sessionId, hs.serverHello.sessionId) {
		handshake_messages.go#L75: 	sessionId                        []byte
		handshake_messages.go#L378: 				b.AddBytes(m.sessionId)
		handshake_messages.go#L455: 		!readUint8LengthPrefixed(&s, &m.sessionId) {
		handshake_messages.go#L722: 		sessionId:                        slices.Clone(m.sessionId),
		handshake_server.go#L556: 	hs.hello.sessionId = hs.clientHello.sessionId
		handshake_server_tls13.go#L176: 	hs.hello.sessionId = hs.clientHello.sessionId
		handshake_server_tls13.go#L714: 		!bytes.Equal(ch.sessionId, ch1.sessionId) ||
		u_conn.go#L577: 		inner.sessionId = uconn.HandshakeState.Hello.SessionId
		u_handshake_client.go#L254: 		hello.sessionId = make([]byte, 32)
		u_handshake_client.go#L255: 		if _, err := io.ReadFull(config.rand(), hello.sessionId); err != nil {
		u_public.go#L399: 			sessionId:                        chm.SessionId,
		u_public.go#L449: 			SessionId:                    chm.sessionId,